home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Developer / StopWatch / Source / ColCell.h < prev    next >
Encoding:
Text File  |  1994-02-04  |  456 b   |  21 lines

  1. /*
  2.  * Implements a cell that displays its data in multiple columns.
  3.  *
  4.  * For legal stuff see the file COPYRIGHT
  5.  */
  6. #import <appkit/appkit.h>
  7. #import "ColCellData.h"        /* for the protocol definition */
  8.  
  9. @interface ColCell : NXBrowserCell
  10. {
  11.   id <ColCellData>    data;
  12. }
  13.  
  14. - drawInside:(const NXRect *)cellFrame inView:controlView;
  15. - setFont:fontObj;
  16. - copyFromZone:(NXZone *)zone;
  17. - (void)setCellData:(id <ColCellData>)obj;
  18. - (id <ColCellData>)cellData;
  19.  
  20. @end
  21.